+Sat Mar 13 18:13:13 2004 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
+ wrapping, do the offset of the line for justification ourselves.
+ (#120256, Felipe Heidrich)
+
Sun Mar 14 00:03:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcellview.c (gtk_cell_view_expose): Support the
+Sat Mar 13 18:13:13 2004 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
+ wrapping, do the offset of the line for justification ourselves.
+ (#120256, Felipe Heidrich)
+
Sun Mar 14 00:03:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcellview.c (gtk_cell_view_expose): Support the
+Sat Mar 13 18:13:13 2004 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
+ wrapping, do the offset of the line for justification ourselves.
+ (#120256, Felipe Heidrich)
+
Sun Mar 14 00:03:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcellview.c (gtk_cell_view_expose): Support the
+Sat Mar 13 18:13:13 2004 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
+ wrapping, do the offset of the line for justification ourselves.
+ (#120256, Felipe Heidrich)
+
Sun Mar 14 00:03:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcellview.c (gtk_cell_view_expose): Support the
+Sat Mar 13 18:13:13 2004 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
+ wrapping, do the offset of the line for justification ourselves.
+ (#120256, Felipe Heidrich)
+
Sun Mar 14 00:03:18 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcellview.c (gtk_cell_view_expose): Support the
case GTK_WRAP_NONE:
break;
}
-
+
display->total_width = MAX (layout->screen_width, layout->width) - display->left_margin - display->right_margin;
}
display->width = PIXEL_BOUND (extents.width) + display->left_margin + display->right_margin;
display->height += PANGO_PIXELS (extents.height);
+
+ /* If we aren't wrapping, we need to do the alignment of each
+ * paragraph ourselves.
+ */
+ if (pango_layout_get_width (display->layout) < 0)
+ {
+ gint excess = display->total_width - display->width;
+
+ switch (pango_layout_get_alignment (display->layout))
+ {
+ case PANGO_ALIGN_LEFT:
+ break;
+ case PANGO_ALIGN_CENTER:
+ display->x_offset += excess / 2;
+ break;
+ case PANGO_ALIGN_RIGHT:
+ display->x_offset += excess;
+ break;
+ }
+ }
/* Free this if we aren't in a loop */
if (layout->wrap_loop_count == 0)